home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Special 11
/
Amiga Plus 11: Amiga Future.iso
/
rexx
/
read_disk.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-07-22
|
539b
|
30 lines
/*
**************************
**** xFX ARexx script ****
**************************
Create a file-disk
*/
if ~show('P','xFX.1') then do /* Check if xFX is running */
say 'xFX not running !'
exit
end
InDev = ''
OutFile = ''
say 'Input device:'
parse pull InDev
if InDev ~= '' then do
say 'Output file:'
parse pull Outfile
if OutFile ~= '' then do
address 'xFX.1' read InDev OutFile addicon
say 'Done.'
end
end